Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
92.86% covered (success)
92.86%
91 / 98
71.43% covered (warning)
71.43%
10 / 14
CRAP
0.00% covered (danger)
0.00%
0 / 1
LaravelTestApplication
92.86% covered (success)
92.86%
91 / 98
71.43% covered (warning)
71.43%
10 / 14
20.15
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getConsoleApplication
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
1 / 1
1
 getApplicationConfig
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 defineEnvironment
100.00% covered (success)
100.00%
40 / 40
100.00% covered (success)
100.00%
1 / 1
1
 bootApplication
76.92% covered (warning)
76.92%
10 / 13
0.00% covered (danger)
0.00%
0 / 1
2.05
 getServiceContainer
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 cleanApplication
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 httpRequestGet
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
2
 handleResponse
100.00% covered (success)
100.00%
11 / 11
100.00% covered (success)
100.00%
1 / 1
3
 getPackageProviders
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 httpRequest
100.00% covered (success)
100.00%
8 / 8
100.00% covered (success)
100.00%
1 / 1
2
 loginAs
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
 logout
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 getLoggedInAs
83.33% covered (warning)
83.33%
5 / 6
0.00% covered (danger)
0.00%
0 / 1
2.02
1<?php
2namespace Apie\IntegrationTests\Applications\Laravel;
3
4use Apie\AiInstructor\AiClient;
5use Apie\Common\Events\AddAuthenticationCookie;
6use Apie\Common\IntegrationTestLogger;
7use Apie\Common\ValueObjects\DecryptedAuthenticatedUser;
8use Apie\Common\Wrappers\TextEncrypter;
9use Apie\Core\Other\FileWriterInterface;
10use Apie\Core\Other\MockFileWriter;
11use Apie\IntegrationTests\Applications\MockFactory;
12use Apie\IntegrationTests\Concerns\ItRunsApplications;
13use Apie\IntegrationTests\Config\ApplicationConfig;
14use Apie\IntegrationTests\Config\BoundedContextConfig;
15use Apie\IntegrationTests\Interfaces\TestApplicationInterface;
16use Apie\IntegrationTests\Requests\TestRequestInterface;
17use Apie\LaravelApie\ApieServiceProvider;
18use Illuminate\Contracts\Config\Repository;
19use Illuminate\Contracts\Http\Kernel as HttpKernel;
20use Illuminate\Http\Request;
21use Illuminate\Support\Facades\Auth;
22use Nyholm\Psr7\Factory\Psr17Factory as NyholmPsr17Factory;
23use Orchestra\Testbench\TestCase;
24use Psr\Container\ContainerInterface;
25use Psr\Http\Message\ResponseInterface;
26use Symfony\Bridge\PsrHttpMessage\Factory\HttpFoundationFactory;
27use Symfony\Bridge\PsrHttpMessage\Factory\PsrHttpFactory;
28use Symfony\Component\Console\Application;
29use Symfony\Component\HttpFoundation\Cookie;
30use Symfony\Component\HttpFoundation\Response as HttpFoundationResponse;
31use Symfony\Component\HttpFoundation\ResponseHeaderBag;
32use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
33
34class LaravelTestApplication extends TestCase implements TestApplicationInterface
35{
36    use ItRunsApplications;
37
38    /**
39     * @phpstan-ignore method.parentMethodFinalByPhpDoc
40     */
41    public function __construct(
42        private readonly ApplicationConfig $applicationConfig,
43        private readonly BoundedContextConfig $boundedContextConfig
44    ) {
45        parent::__construct('Laravel application');
46    }
47
48    public function getConsoleApplication(): Application
49    {
50        $application = new \Illuminate\Console\Application(
51            $this->getServiceContainer(),
52            $this->getServiceContainer()->get(\Illuminate\Contracts\Events\Dispatcher::class),
53            'test'
54        );
55        return $application;
56    }
57
58    public function getApplicationConfig(): ApplicationConfig
59    {
60        return $this->applicationConfig;
61    }
62
63    protected function defineEnvironment($app): void
64    {
65        tap($app->make('config'), function (Repository $config) {
66            $config->set('app.key', 'base64:/aNEFWQbsYwDslb4Xw1RKKj9oCdZdbNhvcyUpVgXPz4=');
67            $config->set('apie.encryption_key', 'test');
68            $config->set(
69                'apie.bounded_contexts',
70                $this->boundedContextConfig->toArray()
71            );
72            $config->set(
73                'apie.scan_bounded_contexts',
74                []
75            );
76            // this has to be explicit because of some code execution order issues
77            $config->set('apie.enable_ai_instructor', true);
78            $config->set('apie.enable_mcp_server', true);
79            $config->set('apie.enable_webdav', true);
80            $config->set(
81                'apie.ai',
82                [
83                    'base_url' => 'http://localbost:11434',
84                    'api_key' => 'test',
85                ]
86            );
87            $config->set(
88                'apie.datalayers',
89                [
90                    'default_datalayer' => $this->applicationConfig->getDatalayerImplementation()->name,
91                ]
92            );
93            $config->set(
94                'apie.doctrine',
95                [
96                    'build_once' => false,
97                    'run_migrations' => true,
98                    'connection_params' => [
99                        'driver' => 'pdo_sqlite'
100                    ]
101                ]
102            );
103            $config->set('apie.remote_mcp_path', '/mcp');
104            $config->set('apie.enable_graphql', true);
105        });
106    }
107
108    /**
109     * Boot application. Should be called at the start of the test.
110     */
111    public function bootApplication(): void
112    {
113        IntegrationTestLogger::resetLoggedException();
114        $this->setUp();
115        $this->session([]);
116        if (getenv('PHPUNIT_LOG_INTEGRATION_OUTPUT')) {
117            $this->withoutExceptionHandling([
118                NotFoundHttpException::class
119            ]);
120        }
121        $this->app->instance(FileWriterInterface::class, new MockFileWriter());
122        $this->app->instance(
123            AiClient::class,
124            MockFactory::createMockAiClient()
125        );
126        unset($this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME]);
127    }
128
129    /**
130     * Gets service container of application. Should be used as little as possible.
131     */
132    public function getServiceContainer(): ContainerInterface
133    {
134        return $this->app;
135    }
136
137    /**
138     * Cleans up application. Should be called at the end of the test.
139     */
140    public function cleanApplication(): void
141    {
142        $this->tearDown();
143    }
144
145    /**
146     * Does a HTTP request on the application and returns the response.
147     */
148    public function httpRequestGet(string $uri): ResponseInterface
149    {
150        //workaround against spacebar search test and Laravel doing unneeded things
151        if (str_ends_with($uri, ' ')) {
152            $uri .= '&dummy=1';
153        }
154        $testResponse = $this->get($uri);
155        $laravelResponse = $testResponse->baseResponse;
156        return $this->handleResponse($laravelResponse);
157    }
158
159    private function handleResponse(HttpFoundationResponse $laravelResponse): ResponseInterface
160    {
161        $cookie = $laravelResponse->headers->getCookies(
162            ResponseHeaderBag::COOKIES_ARRAY
163        )[""]["/"][AddAuthenticationCookie::COOKIE_NAME] ?? null;
164        if ($cookie !== null) {
165            $cookie = Cookie::fromString($cookie)->getValue();
166        }
167        if ($cookie) {
168            $this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME] = $cookie;
169        } else {
170            unset($this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME]);
171        }
172
173        $psrFactory = new NyholmPsr17Factory();
174        $factory = new PsrHttpFactory($psrFactory, $psrFactory, $psrFactory, $psrFactory);
175        return $factory->createResponse($laravelResponse);
176    }
177
178    protected function getPackageProviders($app): array
179    {
180        return [ApieServiceProvider::class];
181    }
182
183    public function httpRequest(TestRequestInterface $testRequest): ResponseInterface
184    {
185        $psrRequest = $testRequest->getRequest();
186        $factory = new HttpFoundationFactory();
187        $sfRequest = $factory->createRequest($psrRequest);
188        $laravelRequest = Request::createFromBase($sfRequest);
189        if (isset($this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME])) {
190            $laravelRequest->cookies->set(AddAuthenticationCookie::COOKIE_NAME, $this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME]);
191        }
192        $laravelResponse = $this->app->make(HttpKernel::class)->handle($laravelRequest);
193        return $this->handleResponse($laravelResponse);
194    }
195
196    public function loginAs(DecryptedAuthenticatedUser $user): void
197    {
198        $textEncrypter = new TextEncrypter('test');
199        $this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME] = $textEncrypter->encrypt($user->toNative());
200    }
201
202    /**
203     * Forget that you are logged in.
204     */
205    public function logout(): void
206    {
207        Auth::logout();
208        unset($this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME]);
209    }
210
211    public function getLoggedInAs(): ?DecryptedAuthenticatedUser
212    {
213        if (empty($this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME])) {
214            return null;
215        }
216        $textEncrypter = new TextEncrypter('test');
217        return DecryptedAuthenticatedUser::fromNative(
218            $textEncrypter->decrypt($this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME]),
219        );
220    }
221}